error TS5107: Option 'moduleResolution=node10' is deprecated and will stop functioning in TypeScript 7.0. Specify compilerOption '"ignoreDeprecations": "6.0"' to silence this error.


!!! error TS5107: Option 'moduleResolution=node10' is deprecated and will stop functioning in TypeScript 7.0. Specify compilerOption '"ignoreDeprecations": "6.0"' to silence this error.
==== /node_modules/fancy-lib/package.json (0 errors) ====
    {
        "name": "fancy-lib",
        "version": "1.0.0",
        "main": "index.js",
        "exports": {
            ".": "./definitely-not-index.js"
        }
    }
    
==== /node_modules/fancy-lib/index.d.ts (0 errors) ====
    export declare const fancy: "feast";
    
==== /node_modules/fancy-lib/definitely-not-index.d.ts (0 errors) ====
    export declare const fancy: "ketchup";
    
==== /main.ts (0 errors) ====
    import { fancy } from "fancy-lib";
    fancy;
    